+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
+2001-08-04 Michael Natterer <mitch@gimp.org>
+
+ * gtk/gtkitemfactory.c (gtk_item_factory_create_item):
+ Need to show the image after adding it to the GtkImageMenuItem.
+ This used to work without in testgtk because of the
+ gtk_widget_show_all() at the end of the function.
+ (Closes #54978).
+
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
image = gtk_image_new_from_pixbuf (pixbuf);
if (image)
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
+ {
+ gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
+
+ gtk_widget_show (image);
+ }
if (pixbuf)
g_object_unref (G_OBJECT (pixbuf));
image = gtk_image_new_from_stock (entry->extra_data, GTK_ICON_SIZE_MENU);
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
-
+
+ gtk_widget_show (image);
+
if (gtk_stock_lookup (entry->extra_data, &stock_item))
{
if (!accelerator)